home *** CD-ROM | disk | FTP | other *** search
/ Wired for Sound Pro / Wired for Sound Pro CD (Aristosoft, Inc.) (1993).ISO / wfscdset / cuiwfsp / makefile < prev    next >
Makefile  |  1993-11-01  |  673b  |  36 lines

  1. all: mscuistf.dll
  2.  
  3.  
  4. !if "$(DEBUG)" == "yes"
  5. CC = cl -c -nologo -AMw -Gw  -Zpei -W3 -Od -DDEBUG
  6. !else
  7. CC = cl -c -nologo -AMw -Gsw2 -Ocegiltw -Zpe -W3
  8. !endif
  9.  
  10.  
  11. dialogs.res: dialogs.rc dialogs.dlg bldver.h
  12.     rc -r dialogs.rc
  13.  
  14. dlgprocs.obj: cui.h dlgprocs.c
  15.     $(CC) dlgprocs.c
  16.  
  17.  
  18. mscuistf.dll: mscuistf.def mscomstf.lib msuilstf.lib msshlstf.lib \
  19.         dlgprocs.obj dialogs.res
  20. !if "$(DEBUG)" == "yes"
  21.     link @cuistfd.lnk
  22. !else
  23.     link @cuistf.lnk
  24. !endif
  25.     copy   mscuistf.dll mscuistf.nrc
  26.     rc -30 dialogs.res  mscuistf.dll
  27.  
  28.  
  29. clean:
  30.     touch mscuistf.dll
  31.     del   mscuistf.dll
  32.     touch dlgprocs.obj
  33.     del   dlgprocs.obj
  34.     touch dialogs.res
  35.     del   dialogs.res
  36.